home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / X11 / Xaw / MultiSink.h < prev    next >
C/C++ Source or Header  |  2006-04-12  |  5KB  |  114 lines

  1. /* $Xorg: MultiSink.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $ */
  2.  
  3. /*
  4.  * Copyright 1991 by OMRON Corporation
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and its
  7.  * documentation for any purpose is hereby granted without fee, provided that
  8.  * the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name OMRON is not be used in
  11.  * advertising or publicity pertaining to distribution of the software without
  12.  * specific, written prior permission.  OMRON makes no representations
  13.  * about the suitability of this software for any purpose.  It is provided
  14.  * "as is" without express or implied warranty.
  15.  *
  16.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  17.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  18.  * EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  19.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  20.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  21.  * TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  22.  * PERFORMANCE OF THIS SOFTWARE.
  23.  *
  24.  *      Author: Li Yuhong     OMRON Corporation
  25.  */
  26.  
  27. /***********************************************************
  28.  
  29. Copyright 1987, 1988, 1994, 1998  The Open Group
  30.  
  31. Permission to use, copy, modify, distribute, and sell this software and its
  32. documentation for any purpose is hereby granted without fee, provided that
  33. the above copyright notice appear in all copies and that both that
  34. copyright notice and this permission notice appear in supporting
  35. documentation.
  36.  
  37. The above copyright notice and this permission notice shall be included in
  38. all copies or substantial portions of the Software.
  39.  
  40. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  41. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  42. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  43. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  44. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  45. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  46.  
  47. Except as contained in this notice, the name of The Open Group shall not be
  48. used in advertising or otherwise to promote the sale, use or other dealings
  49. in this Software without prior written authorization from The Open Group.
  50.  
  51.  
  52. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  53.  
  54.                         All Rights Reserved
  55.  
  56. Permission to use, copy, modify, and distribute this software and its 
  57. documentation for any purpose and without fee is hereby granted, 
  58. provided that the above copyright notice appear in all copies and that
  59. both that copyright notice and this permission notice appear in 
  60. supporting documentation, and that the name of Digital not be
  61. used in advertising or publicity pertaining to distribution of the
  62. software without specific, written prior permission.  
  63.  
  64. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  65. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  66. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  67. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  68. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  69. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  70. SOFTWARE.
  71.  
  72. ******************************************************************/
  73. /* $XFree86: xc/lib/Xaw/MultiSink.h,v 1.5 2001/01/17 19:42:27 dawes Exp $ */
  74.  
  75. #ifndef _XawMultiSink_h
  76. #define _XawMultiSink_h
  77.  
  78. /*
  79.  * MultiSink Object
  80.  */
  81.  
  82. #include <X11/Xaw/TextSink.h>
  83.  
  84. /* Resources:
  85.  
  86.  Name             Class        RepType        Default Value
  87.  ----             -----        -------        -------------
  88.  echo                Output             Boolean         True
  89.  displayNonprinting  Output             Boolean         True
  90.  fontSet             FontSet            XFontSet        XtDefaultFontSet
  91.  
  92. */
  93.  
  94. #define XtCOutput "Output"
  95.  
  96. #define XtNdisplayNonprinting "displayNonprinting"
  97. #define XtNecho "echo"
  98.  
  99. #ifndef XtNfontSet        /*Sheeran, Omron KK, 93/03/04*/
  100. #define XtNfontSet        "fontSet"
  101. #endif
  102.  
  103. #ifndef XtCFontSet        /*Sheeran, Omron KK, 93/03/04*/
  104. #define XtCFontSet        "FontSet"
  105. #endif
  106.  
  107. /* Class record constants */
  108. extern WidgetClass multiSinkObjectClass;
  109.  
  110. typedef struct _MultiSinkClassRec *MultiSinkObjectClass;
  111. typedef struct _MultiSinkRec      *MultiSinkObject;
  112.  
  113. #endif /* _XawMultiSink_h */
  114.